home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / WHEREIS.ZIP / WHEREIS.MAK < prev    next >
Text File  |  1992-10-27  |  2KB  |  49 lines

  1. # Make file for Turbo Assembler  WHEREIS sample project.
  2. #   Copyright (c) 1988, 1992 by Borland International, Inc.
  3.  
  4. # The WHEREIS example takes advantage of many special TASM features.
  5. TASM_OPTIONS = /zi /dMDL=small /m # Options for TASM
  6.  
  7. whereis.exe : iwhereis.obj iparam.obj ifindbyt.obj\
  8.               ibytecpy.obj ifindrep.obj ilocstrg.obj\
  9.               iwriteps.obj iskpwhit.obj iasciizs.obj\
  10.               iparsefn.obj ifindfil.obj idelchar.obj\
  11.               iexecdos.obj
  12.   tlink /v iwhereis+iparam+ifindbyt+\
  13.         ibytecpy+ifindrep+ilocstrg+iwriteps\
  14.         +iskpwhit+iasciizs+iparsefn+ifindfil+idelchar+iexecdos
  15.   del whereis.exe
  16.   ren iwhereis.exe whereis.exe
  17.  
  18. .ASM.OBJ :
  19.   tasm $(TASM_OPTIONS) $*
  20.  
  21. iwhereis.obj : iwhereis.asm iwhglobl.inc kbd.inc dos.inc whusage.inc\
  22.                imacros.mac bios.inc ibios.mac idos.mac
  23.   tasm $(TASM_OPTIONS) iwhereis
  24.  
  25. iexecdos.obj : iexecdos.asm idos.mac dos.inc imacros.mac ibios.mac bios.inc
  26.   tasm $(TASM_OPTIONS) iexecdos
  27.  
  28. iwriteps.obj : iwriteps.asm idos.mac dos.inc imacros.mac ibios.mac bios.inc
  29.   tasm $(TASM_OPTIONS) iwriteps
  30.  
  31. ifindfil.obj : ifindfil.asm iwhglobl.inc idos.mac idos.inc ibios.mac\
  32.                imacros.mac bios.inc kbd.inc dos.inc
  33.   tasm $(TASM_OPTIONS) ifindfil
  34.  
  35. iasciizs.obj : iasciizs.asm ibios.mac imacros.mac bios.inc idos.mac dos.inc
  36.   tasm $(TASM_OPTIONS) iasciizs
  37.  
  38. iparam.obj : iparam.asm iwhglobl.inc dos.inc idos.inc kbd.inc
  39.   tasm $(TASM_OPTIONS) iparam
  40.  
  41. ibytecpy.obj : ibytecpy.asm imacros.mac ibios.mac bios.inc
  42.   tasm $(TASM_OPTIONS) ibytecpy
  43.  
  44. ilocstrg.obj : ilocstrg.asm imacros.mac ibios.mac bios.inc
  45.   tasm $(TASM_OPTIONS) ilocstrg
  46.  
  47. iskpwhit.obj : iskpwhit.asm kbd.inc
  48.   tasm $(TASM_OPTIONS) iskpwhit
  49.